function validate_form ( )
{
	valid = true;

        if (!document.customer_form.CustomerDisclosure.checked)
        {
                alert ( "You must check disclosure box in order to save changes." );
                valid = false;
        }

        return valid;
}