function clearField(thefield) {
if (thefield.defaultValue==thefield.value)
thefield.value = "";
thefield.style.color = '#000000';
}

function checkForm(thefield, message){
	if(thefield.value.length < 1 ||  thefield.value == " Attorney Last Name"){
		alert(message);
		return false;
	}else{
		return true;
	}
}