/* -- make sure the checkbox is checked on form submit -- */

document.getElementById('Form_Form_action_process').onclick = checkForm;


function checkForm(e)
{
	if (!document.getElementById('Form_Form_EditableCheckbox12').checked)
	{
		alert ("'Yes, I would like to participate in the RTA Program' must be checked.");
	}
}
