function getRegions(countrySelect, regionSelect)
{
    var countryId = jQuery("#"+countrySelect+" option:selected").val();
    jQuery.ajax({type: "GET",cashe:false,url: "getLocation.php",data: "type=region&countryId="+countryId,
							success: function(content)
							{								
                                jQuery("#"+regionSelect).empty();
                                jQuery("#"+regionSelect).append(content);																																			
		   					}
	           });
}

function getCity(regionSelect, citySelect)
{
    var regionId = jQuery("#"+regionSelect+" option:selected").val();
    jQuery.ajax({type: "GET",cashe:false,url: "getLocation.php",data: "type=city&regionId="+regionId,
							success: function(content)
							{								
                                jQuery("#"+citySelect).empty();
                                jQuery("#"+citySelect).append(content);																																			
		   					}
	           });
}
