function validateForm()
{
var x=document.forms["searchForm"]["search"].value
if (x==null || x=="" || x=="What car part are you looking for?")
  {
  alert("Tell us what car part you need first!");
  return false;
  }
if (x==null || x=="")
  {
  alert("Tell us what car part you need first!");
  return false;
  }

}

