function CheckOptions (theForm)
{
 for  ( var i = 0; i < theForm.elements.length; i++ )
 {
  if (theForm.elements[i] .type == "Please Select Below")
  {
    if (theForm.elements[i] .selectIndex ==0)
    {
      alert('Please Make A Selection');
      theForm.elements[i].focus();
      return(false);
     }
   }
 }
 return (true);
}
for (var i = 0; i < document.forms.length; i++ )
 {
      if (document.forms[i].action.match("cgi-bin/test-order") ||
          document.forms[i].action.match("order.store.yahoo.com"))
      {
          document.forms[i].onsubmit =
               new Function ("return CheckOptions(document.forms [" + i + "])");
      }
}