<script LANGUAGE="javascript"> function radio_selected() {
if (input_add.input_radio1.checked) 
   {  tablea.style.display="";
       tableb.style.display="none";
    tablec.style.display="none";
    tabled.style.display="none";
    tablee.style.display="none";
   }
else if (input_add.input_radio2.checked) 
{
tablea.style.display="none";
       tableb.style.display="";
    tablec.style.display="none";
    tabled.style.display="none";
    tablee.style.display="none";
}
else if (input_add.input_radio3.checked) 
{
tablea.style.display="none";
       tableb.style.display="none";
    tablec.style.display="";
    tabled.style.display="none";
    tablee.style.display="none";
}
else if (input_add.input_radio4.checked) 
{
tablea.style.display="none";
       tableb.style.display="none";
    tablec.style.display="none";
    tabled.style.display="";
    tablee.style.display="none";
}
else if (input_add.input_radio5.checked) 
{
tablea.style.display="none";
       tableb.style.display="none";
    tablec.style.display="none";
    tabled.style.display="none";
    tablee.style.display="";
}
}</script><form method="POST" action="input_resp.jsp" id="input_add">
  <br> 
  <input type="radio" name="input_standard" checked id="input_radio1" value=1 onclick="radio_selected()">A
<input type="radio" name="input_standard" id="input_radio2" value=2 onclick="radio_selected()">B
<input type="radio" name="input_standard" id="input_radio3" value=3 onclick="radio_selected()">C
<input type="radio" name="input_standard" id="input_radio4" value=4 onclick="radio_selected()">D
<input type="radio" name="input_standard" id="input_radio5" value=5 onclick="radio_selected()">E<table id="tablea"><tr><td>111111111111</td></tr></table>
<table id="tableb"><tr><td>222222222222</td></tr></table>
<table id="tablec"><tr><td>333333333333</td></tr></table>
<table id="tabled"><tr><td>444444444444</td></tr></table>
<table id="tablee"><tr><td>555555555555</td></tr></table>
</form>