I am unclear, but heres something:<br><br>if the first field (the one with four choices) is a <select>,<br><br>then you would need to do this to access the value of the selected item:<br><br>document.containingform.fieldname.options[document.containingform.selectedIndex].value<br><br>so, using this, and jaredn's line:<br>document.containingform.fieldname.value<br><br>we can write a script:<br><br>function check_if_bad(){<br>var select=document.containingform.select;<br>var otherField=document.containingform.fieldname;<br><br>if (select.options[select.selectedIndex].value==otherField.value){<br>alert('DO IT RIGHT!!!!');<br>return false} else {return true}<br><br>}<br><br>then insert this into the <form> tag:<br><br>onSubmit="return check_if_bad()"<br><br>that way, if the two are equal, then the form won't submit, and an alert will fire.<br><br>but make sure to change the variables so that they refrence whats on the page.<br><br> <p>theEclipse<br><a href=mailto:eclipse_web@hotmail.com>eclipse_web@hotmail.com</a><br><a href=robacarp.webjump.com>robacarp.webjump.com</a><br>**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.