function validateForm()
{
    valid = true;

    if ( document.getElementById('verify').value != "ynmbm" )
    {
        alert ( "You must enter the code from the image correctly to submit this form." );
		document.getElementById('verify').value = "";
		document.getElementById('verify').focus();
		valid = false;
    }

    return valid;
}

