I'm using bootstrap-select/selectpicker for several different drop-down lists on one page. The box for each list displays the title for the selected item, which is the first option. My goal is to change the color displayed, such as to red, for any other options that become selected (not the first in each list). Users could then easily see if changes or selections have been made. (Each change triggers an update to part of the page.) Is this possible?
<form id='submitCriteria' action='' method='post'>
<select id='selLevel' class='selectpicker' name='levels'>
<option title='Levels' value='No Preference'
selected = 'selected'>No Preference</option>
<option title='Levels:<br> 1+' value=1 >1+ </option>
<option title='Levels:<br> 2+' value=2 >2+ </option>
<option title='Levels:<br> 3+' value=3 >3+ </option>
</select>
<select id='selGar' class='selectpicker' name='gar'>
<option title='Garage' value='No Preference'
selected = 'selected'>No Preference</option>
<option title='Garage:<br> 1+' value=1 >1+ </option>
<option title='Garage:<br> 2+' value=2 >2+ </option>
<option title='Garage:<br> 3+' value=3 >3+ </option>
<option title='Garage:<br> 4+' value=4 >4+ </option>
<option title='Garage:<br> 5+' value=5 >5+ </option>
</select>
</form>