ahi usas algo ke recien me paso ami
se supone que tus check box se llaman todos iguales tipo_cirugia entoces utilizas un for
eso si tienes que saber la cantidad total de checkbox que utilizaras
y haces
Código PHP:
for(i=0;i<document.form.VARIABLE_CANTIDAD_VALORES.value;i++){
if(!document.form.['tipo_cirugia'+i] .checked){
alert("ESCOJE UNA");
return false;}
}