CSS se selecionar tem valor

//if select has this value
select > option[value="someValue"] {background: #ccc;}

//if select has this value selected
select > option[value="someValue"]:checked {background: #ccc;}
JS Ninja