برای تغییر action فرم با استفاده از radio botton انتخاب شده در جاوااسکریپت از کد زیر استفاده نمایید:
<script type="text/javascript">
<!--//
function changeAction(url) {
document.this_form.action = "http://google.com";
}
//-->
</script>
<form method="POST" name="this_form" action="">
<input type="radio" value="http://google.com" onClick="changeAction(this.value)">
</form>