Possible Duplicate:
jQuery get select option text
I have a drop downlist as like:
<select id="systemMessageList" name="systemMessageList">
<option value="-1">--- Choose One ---</option>
<option value="120">niempo</option>
<option value="119">quartero</option>
<option value="118">mileno</option>
</select>
I want that: I will pass the value for example 119
and it will return the text quartero
in JQuery?