Male: <input id="male" accesskey="m" type="radio" name="Sex" value="Male" />
Female: <input id="female" accesskey="f" type="radio" name="Sex" value="Female" />
<p>The access key for the radio buttons are:
<script type="text/javascript">
document.write(document.getElementById('male').accessKey);
document.write(document.getElementById('female').accessKey);