I want to change the front color of dropdown list name. Here 2 Dropdown name list 1. Doctor Name 1 (Discount 10%) and 2. Doctor Name 2 (Discount 15%). But i want to change font color of only (Discount 10% ) (Font Color Red) and (Discount 15%) (Font color Blue) . How to change this?. please help me to solve that problem
<html>
<head>
</head>
<body>
<select name="">
<option value="" >Select Doctor Name</option>
<option value="1">Doctor Name 1 (Discount 10%)</option>
<option value="2">Doctor Name 2 (Discount 15 %)</option>
</select>
</body>
<html>