// JavaScript Document
function checkForm(theform){
	if ($("#seminarChoice").val() == 0)
		{alert("Selecting a training seminar date is required.")}
	else
		{theform.submit();  return true;}
}

