function validateForm()
{
    valid = true;

    if ( document.getElementById('verify2').value != "maple" )
    {
        alert ( "You must answer the 'tree' question correctly to submit this form." );
		document.getElementById('verify2').value = "";
		document.getElementById('verify2').focus();
		valid = false;
    }

    return valid;
}