<input type=checkbox name=check[] value="first_element">
<input type=checkbox name=check[] value="second_element">
<input type=checkbox name=check[] value="third_element">
When you submit this form you get an array $check, so you can get its elements this way:
for($i=0;$i<count($check);$i++) {
print($check[$i]);
}
So similar way you cn delete your records in database:
for($i=0;$i<count($check);$i++) {
$borra = ("DELETE FROM menu_pral WHERE your_fiels = $check[$i]");
mysql_query ($borra,$conecta);
}
I'm not sure I understand details of your question,but if I do, that's great ;-)
Best regards