/**
 * Created by IntelliJ IDEA.
 * User: noah
 * Date: 20 груд 2010
 * Time: 16:00:05
 * To change this template use File | Settings | File Templates.
 */

function getCityList(obj, url) {
  var city_id = obj.id.replace('_region_id', '_city_id');
  $.get(
    url,
    { region_id: $('#' + obj.id).val() },
    function(data) {
      $('#' + city_id).get(0).innerHTML = data;
    }
  );
}

function getRegionList(obj, url) {
  var region_id = obj.id.replace('_country_id', '_region_id');
  var city_id = obj.id.replace('_country_id', '_city_id');
  $.get(
    url,
    { country_id: $('#' + obj.id).val() },
    function(data) {
      $('#' + region_id).get(0).innerHTML = data;
      $('#' + city_id).get(0).options.length = 1;
    }
  );
}

