Eso lo puedes hacer con javascript, buscando un poco en la web, me encontre con esta pagina:
http://www.w3schools.com/js/js_form_validation.asp
Que te muestra el siguiente codigo:
Código Javascript
:
Ver original<html>
<head>
<script type="text/javascript">
function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value=="")
{
alert(alerttxt);return false;
}
else
{
return true;
}
}
}
function validate_form(thisform)
{
with (thisform)
{
if (validate_required(email,"Email must be filled out!")==false)
{email.focus();return false;}
}
}
</script>
</head>
<body>
<form action="submit.htm" onsubmit="return validate_form(this)" method="post">
Email: <input type="text" name="email" size="30">
<input type="submit" value="Submit">
</form>
</body>
</html>
Solo en lugar del campo de texto, lo cambias por checkbox, y ya.