Form Radio button click-able

Make the text on a radio button click-able.

[html]
<label><input type="radio" value="apple" name="fruit">Apple</label>
<label><input type="radio" value="orange" name="fruit">Orange</label>
<label><input type="radio" value="banana" name="fruit">Banana</label>
[/html]