// JavaScript Document
function validateSearch(thisform)
{ 
	
	with (thisform)
	{
		 	if (emptyvalidation(county,"Woops! You forgot to select County ")==false) 
			{
				county.focus();
				return false;
			}
							
		   thisform.submit();
		  return false;				
		
	}
	return true;
}
