Check so at least one checkbox on your form is checked before it’s allowed to submit:
$("#main_form").on('submit',function(e){ if ( $("input[type='checkbox']:checked").length > 0) { } else { e.preventDefault(); alert("Please check at least one list you wish to be included in."); return false; } return true; });