// JavaScript Document
function validsearch(th)
{
	if(th.city.value<=0)
	{
		alert("Select town");
		th.city.focus();
		return false;
	}
}
