<select id="mySelect">
<option value="1">Yes</option>
<option value="2">No</option>
</select>
<input type="button" id="demo" value = "Demo" />
<script type="text/javascript">
$("#demo").live("click", function () {
//Get the text or html of the option with value = 1
var optionText = $("#mySelect option[value=1]").html();
alert(optionText);
});
</script>