function changeCountry_front()
{
	if($F('Country')!=''&&$F('Country')!='All'){
		$('pcounty').show();
		var Country_ID = $F('Country');
		var url = 'EiFramework/Ajax/ajax_lists.asp';
		
		var pars = 't=MSAU48&i=' + Country_ID;
		
		var date = new Date();
		date = date.getMinutes() +'' +date.getSeconds()
		var myXHR = new XHR({async:true,method:'get',
			onSuccess:function(){
				if(this.response.text!=''){
					$('pcounty').innerHTML=this.response.text;
				}else{
					$('pcounty').innerHTML='<select name="County" id="County" class="text"><option value="">All</option></select>';
				}
			}
		}).send(url,pars+'&da='+date);
		
		//var myAjax = new Ajax.Updater('psub', url+'?'+pars,{asynchronous:false})
	}else{
		$('pcounty').innerHTML='';
	}
}