/*
  Filename: ValForm_Wrk4us.js
*/
function valform_wrk4us(theForm) {

  if (theForm.p_site.value == "CON" || theForm.p_site.value == "OVS")
    {
      alert('Please select a valid state or country.');
      theForm.p_site.focus();
      //theForm.p_site.select();
      return false;
    }
return true;
}
