
function checkform ( form )
{

  // ** START **

 if (form.catno.options[0].selected != ""){
    alert( "Please select a category." );
    form.catno.focus();
    return false ;
  }





  // ** END **
  return true ;
}













