I want to be able to set the "selected" item in my drop down list to be the option value whose text equals "None". Here's my drop down list:
<select data-val="true" data-val-number="The field SecondaryFillerFk must be a number." data-val-required="The SecondaryFillerFk field is required." id="SecondaryFillerFk" name="SecondaryFillerFk">
<option value="46">Lactose, Spray-Dried</option>
<option value="47">Microcrystalline Celluose</option>
<option value="48">Sodium Bicarbonate</option>
<option value="49">Methocel E4M</option>
<option value="50">Methocel K100M</option>
<option value="53">None</option>
</select>
The following jQuery obviously does not work, because it's looking for the value of "None", which doesn't exist.
$('#SecondaryFillerFk').val('None');
QUESTION: How can I set the selected value of my drop down list to be the option item whose TEXT is equal to "None"?