function validate_form ( )
{
    valid = true;

// Terms & Conditions
if ( document.form.terms.checked == false )

    {
        alert ( "You must agree to the terms and conditions to continue!" );
        valid = false;
    }


    return valid;
}
