alrighty,
alrighty,
let's say you have 4 radios buttons named F1
<input type="radio" name="F1" value="A"> A <br>
<input type="radio" name="F1" value="B"> B <br>
<input type="radio" name="F1" value="C"> C <br>
<input type="radio" name="F1" value="other"> other <br>
add a button to see if they selected whatever
<input type="button" value="check" onClick="runFunction()">
now you need to loop through the radios in your function first to figure out what you have selected
function runFunction()
{
var radios = document.formname.F1
for( x=0; i < radios.length; x++)
if( radios[x].checked) {
var selectedRadio = radios[x].value;
//test it
alert(selectedRadio);
}
}
now you have something to work off of.
if(selectedRadio == "other"

{
perform the manditory condition
}
_________________________________________________________
for the best results to your questions: FAQ333-2924
Is your question a most FAQ?? Find out here FAQ333-3048