function showCounty(){
	var county =document.getElementById("county")
	var country  = document.getElementById("id_country")
	if(country.value=="uk")
	{
		county.style.display = "block";
	}else{
		county.style.display = "none";
	}			
}