jQuery Introduction | Controlling Input Elements | Select Box

Structure of an Option Element

<option value="{option value}">{option content}</option>

Reading the Selected Option Value

$("#{{id}} option:selected").val();
$("select[name=name]").val();

Reading the Selected Option Text

$("#{{id}} option:selected").text()