This can be done simply with the following to get the actual text value ...
var value = $("[name='MyName'] option:selected").text();
or this to get the value attribute ...
var value = $("[name='MyName']").val();
html "MyText", "MyValue"
<select name="MyName">
<option value="MyValue" selected="selected">MyText</option>
</select>