function validate_form(theForm) { 
  if (theForm.cboDestination.value=="") {
    alert("Please select Destination.");
	theForm.cboDestination.focus();
	return false;
  }
  return true;
}
