//

function change_region()
{
	var xmlhttp = getXmlHttp();

	var region_id=as.$$("#fregion").options[as.$$("#fregion").selectedIndex].value;

	if (as.$$("#fregion").selectedIndex!=0)
	 {

		var url='/geo/region/'+region_id+'/';
        
		as.$$("#wcity").innerHTML='<select disabled class="fcf required" id="fcity"><option>Пожалуйста, подождите</option></select>';
        
		xmlhttp.open("GET", url, true);
		xmlhttp.onreadystatechange = function() 
		{
			if (xmlhttp.readyState == 4 && xmlhttp.status == 200) 
			{
				as.$$("#wcity").innerHTML='<select name="city" id="fcity" class="fcf">'+xmlhttp.responseText+'</select>';
			}
		}
        
		xmlhttp.send(null);
	}
	 else
	{
	 as.$$("#wcity").innerHTML='<select disabled name="city" id="fcity" class="fcf required"><option>сначала выберите регион</option></select>';
	};

};

