What method would be best to use to selectively set a single or multiple radio button(s) to a desired setting with JavaScript?
You can also explicitly set value of radio button:
Man Woman
with the following script:
document.gendersForm.gender.value="F";
and corresponding radio button will be checked automatically.
Look at the example on JSFiddle.