function Form_Manufacturer_Validate()
{
	if (document.getElementById("BrandMake").value == 0)
	{
		alert("You must select a brand");
		return false;
	}
	
	return true;
}

function Form_Search_Validate()
{
	if (document.getElementById("DropDownList_Type").value == "TYPE")
	{
		alert("You must select a vehicle type");
		return false;
	}
	
	return true;
}