Hi,
Let's suppose we have the drop-down menu in a template
<p><select name="Drop-Down Menu" size="1">
<option value="1">Choice 1</option>
<option value="2">Choice2</option>
</select></p>It is easy to find the value( here 1 and 2) but how, in Django , can I find the label( here Choice 1 and Choice2) ? E.g. when a user chooses the first option, I need to know that the choosen label was Choice 1 Thanks for reply L.

