<!--

function validator(theForm)
{

  
  if (theForm.Industry.selectedIndex == 0) 
   {
    alert('Please select your industry.');
	theForm.Industry.focus();
    return false;
	}
	
 
	return true;
}

//-->

