Need to capitalize the first letter of the select box option tag.
Here it is what tried:
HTML:
<select>
<option class="selected">test1</option>
<option>test2</option>
<option>test3</option>
</select>
CSS:
select option.selected::first-letter{
text-transform:capitalize;
}