You can write CSS for applying it for all the dropdownlist-
select > option:hover {
background-color: #FF0000;
}
To apply it to a particular dropdownlist, you can write something like-
select[id$='DropDownList1'] > option:hover {
background-color: #FF0000;
}
Hope, it helps :)