I have selection menu:
<div class="selector">
<select>
<option value="valueA">Value A</option>
<option value="valueB">Value B</option>
<option value="valueC">Value C</option>
</select>
</div>
and I need Javascript (no jquery!) to get option by value and change it's text (innerHtml)
for example when I run the function I need to get option with the value "valueB" from class "selector" and change it's text to Value Whatever.