<choice> is an element to allow to choice between groups of control. It is like <radiobuttons>, but you can have fields on each items. An exemple of this type of control is the "action" group of control on a ticket (see below ;-))
<choice ref="action">
<item value="new">
<label>Leave as new</label>
</item>
<item value="ASS">
<label>accept ticket</label>
</item>
<item value="ASS">
<label>resolve as</label>
<menulist ref="resolution">
<label>resolution</label>
<item value="fix">fixed</item>
<item value="inv">invalid</item>
<item value="wtf">won't fix</item>
</menulist>
</item>
<item value="REASS">
<label>Reassign to</label>
<input ref="assignee">
<label>assignee</label>
</input>
</item>
</choice>