function country_onchange (country,objselect_id) 
{
	$.get("scripts/ajax_country_stays.php",{'country':country.value}, 
		  	function(xml) {		
		     resetStays(xml); 
		    }); 
			
	function resetStays(xml) 
	{	
		var html = $("stay_day",xml).text();		
		$("#" + objselect_id).html(html);  
	} 
}
