// JavaScript Document

function checkit(form) {
	if (document.post_lookup.post3.value == "") {
		alert("Please select a letter from the list."); 
		document.post_lookup.post3.focus(); 
		return false;
		 }
	return true;
}
