here is an example of my select :
<select class="form-control" id="mySelect" name="mySelect">
<option>---</option>
<option value="1">John Doe</option>
<option value="5">Maria abz</option>
<option value="8">Thom Cook</option>
<option value="10">Zeno poster</option>
<option value="12">No Fear</option>
So i want to select the option that is equal to my Variable on each time, and not to be based on the value (1,5...etc)
Thank you