//*********************************************************************************
// Function for Checking/ Validation of Advertisement Form for the Member Companeis
// Developer: Avanish Kumar
// Email: Kumar.Avanish@Gmail.com
//*********************************************************************************
function search_validate(theform)
{   
//Services - Check
if(theform.City.value=="")
		{	
		alert("Please Select City in Which You Need Companies.");
		theform.City.focus();
		return (false);
		}
//Customer Name
		if (theform.Service.value=="")
		{
		alert("Please Select Service You Require In Your Selected City.");
		theform.Service.focus();
		return false;
		}
}// Function Ended