Hi,<br><br>My problem is that I need a script that will make sure at least 1 of the 6 checkboxes are selected before being sent. This is the top part of the form, and I have all the other validations working except for the checkboxes. Here is what I have so far:<br><br>ONSUBMIT="<br>if (this.councillor1.checked == FALSE)<br>{<br>return true<br>}<br>else if (this.councillor2.checked == FALSE)<br>{<br>return true<br>}<br>else if (this.councillor3.checked == FALSE)<br>{<br>return true<br>}<br>else if (this.councillor4.checked == FALSE)<br>{<br>return true<br>}<br>else if (this.councillor5.checked == FALSE)<br>{<br>return true<br>}<br>else if (this.councillor6.checked == FALSE)<br>{<br>alert('Please select a councillor')<br>return false<br>} <br>else if (this.Subject.value == '')<br>{<br>alert('Please enter a title for the subject')<br>return false<br>}<br>etc.....<br><br>So what I need is it to read down the script and if does not read a selected checkbox, a alert message pops up saying that they need to make a selection.<br><br>Thanks a ton,<br><br>Joe<br>