codice:
<html>
<head>
<script>
function fu(hhh)
{

	
	document.forms[0].valore.value=hhh.value;
}

</script>

</head>
<body>
<form name=aa method=GET>
<input type=radio name="nome" value="1"  Onclick=" fu(this)">


<input type="radio" name="nome" value="2"  Onclick=" fu(this)">


<input type="radio" name="nome" value="3" Onclick="  fu(this)">
<form>

<input type="radio" name="ee" size="31">

</body>