Javascript Question about radio buttons

How can I set one radion button field to a certain value when selecting another radio button field value…In other words, field radiobutton1 has yes and no…I select yes…Now, I want field radiobutton2, which has values of one, two and three, to be a value of two…How can I do that in javascript? Apparently document.forms[0].radiobutton2.value = “two” does not work…

Any help would be greatly appreciated…Thanks

Subject: Javascript Question about radio buttons

Try this:

document.forms[0].radiobutton2[1].checked=true

Subject: RE: Javascript Question about radio buttons

Thank you much…That worked great…