function CheckInput(TheForm) {
	if (TheForm.CountryID.value == '') {
		TheForm.CountryID.focus();
		alert('The country you call is required.');
		return false;
	} 
	return true;
}