 function submitIt(theForm) {
 	if (!(validDomain(theForm.Selection1.value))) {
		alert("Please enter your Domain Name like mydomain.com");
		theForm.Selection1.focus();
		theForm.Selection1.select();
		return false;
	} 
}
