Two ways:
Check BEFORE form is submitted - Use javascript along the lines of:
if (document.forms.frm_blah.field_name.checked=='true')
document.forms.frm_blah.submit();
OR
Check AFTER form is submitted - Put the following PHP on the ACTION page of the form at the top:
if (!isset ($_POST['field_name']))
die ('Box not checked');