[JQuery] Highlight a Radio field and then pop up an input text box field

[JQuery] Highlight a Radio field and then pop up an input text box field

Hi all,


I am trying to make some dynamic effect to a HTML page using JQuery.<br/>
1.<br/>
When the user clicks a Radio field, the field will be highlighted.<br/>
2.<br/>
When the user clicks the Radio 'Man', <br/>a Input text box will be provided immeditely just below it.

 
Here is my simple HTML page, but I don't know how to do with the JQuery part:

  1.     <Table>
  2.     <TR>
  3.      <TD>Gender</TD>
  4.      <TD>
  5.      Man: <INPUT type=radio name="gender" value="M"><Br/>
  6.      Woman: <INPUT type=radio name="gender" value="F">
  7.      </TD>
  8.     </TR>
  9.     </Table>