Hola Fociños.
Te pongo un ejemplo a ver si te sirve:
Código PHP:
<html>
<head>
<script language='JavaScript'>
function validar(){
with (document.frm){
if (chk.checked)
submit();
else {
alert('Si no marcas la cajita no te dejo pasar!!!');
chk.focus();
}
}
}
</script>
</head>
<body>
<form name='frm' action='siguiente.htm'>
Texto
<input type='text' name='t1'><br>
Otro texto
<input type='text' name='t2'><br>
<input type='checkbox' name='chk'>Cajita<br>
<input type='button' value='Enviar' onclick='validar()'>
</form>
</body>
</html>
Saludos.