tengo este codigo necesito que se active y envie el datos pero me unerro y no envia el dato, si algen me puede ayudar
<script LANGUAGE="JavaScript">
function irA(menu){
window.location.href = menu.options[menu.selectedIndex].value;}
</script>
<table width="22%" border="0" class="menu1" align="center">
<tr>
<td width="49%" rowspan="2" class="Campo"><strong>Monto a financiar</strong></td>
<td width="9%" align="center"><input type="radio" value="1" name="R1" checked onChange ="irA(this)"></td>
<td width="15%" class="Campo"><strong>UF</strong></td>
<td width="27%" rowspan="2"><input name="txtPorcentaje" size="8" value="<?php echo $row[0]; ?>"></td>
</tr>
<tr>
<td align="center"><input type="radio" name="R1" value="2" onChange ="irA(this)"></td>
<td class="Campo"><strong>%</strong></td>
</tr>
</table>