<!DOCTYPE html>
<html>
<head>
<style type="text/css">
select option {
color: blue;
}
</style>
<style type="text/css">
.numbers option {
color: green;
}
</style>
</head>
<body>
<select name="gender">
<option style="color:gray" value="iam">I am</option>
<option value="female">Female</option>
<option value="male">Male</option>
</select>
<select>
<optgroup label="Numbers" class="numbers">
<option style="color:gray" value="0">Zero</option>
<option value="1">One</option>
<option value="2">Two</option>
</optgroup>
</select>
</body>
</html>