How to change span color to red in select option?
in js fiddle i want to change color of <span class="myError">This is a required field.</span> to red color 
select{
  color: green;
}
select option { color: black; }
select option .myError{
  color:red
}<select >
 <option value="">Color:
 <span class="myError">This is a required field.</span>
 </option>
 
 <option value="17">Color: Midnight Blue</option>
 
 <option value="18">Color: Radar Red</option>
 
 </select> 
     
     
    