JSFiddle - React, Tailwind, and code Playground
HTML
<select id="mySelectBox">
<option> first</option>
<option selected="selected"> second </option>
<option> third </option>
</select>
JavaScript
alert($('#mySelectBox option:selected').text());