function spamChecker(){
	var field = document.getElementById("spam");
	
	if(field.value.match(/liap/i)){
		return true;
		}
	else{
		alert('Please fill in the spam question correctly!');
		return false;	
	}
}
