i have dropdownlist containing few values i am applying css(for capitalize character of each word) dynamically from jquery but result not comming as expected only selected value are affected. drop donw list with value
<select id="pList" class="formSelectCity form-control">
<option value="65064">swastik-cottage</option>
<option value="65063">snow-crown-cottage</option>
<option value="65009">white-pearl-cottage</option>
<option value="65061">rana-cottage</option>
<option value="65097">hill-view-cottage</option>
<option value="65103">arjun-kutir-cottage</option>
</select>
jquery
$('#pList').css("text-transform","capitalize");
also i want to remove all hyphens"-" with space" " in all options value.