Reset radio buttons

Is there a way to reset all radio buttons in a control to unchecked after the users’ choice has been processed?

Have you tried this:

Radiobutton1.value = -1;

That works. I also found that this works:

$("#rdoCS_" + rdoCS.value).prop("checked",false)

Thanks!