i have a select options with this code
<div id="selectedCat">
    <select id="selectCat" name="selectCat"style="background:none;border:none;" onchange="location= this.value;" >
        <option>what do yo looking for?</option>
        <option value= "cakes.php">cookies</option>
        <option value= "cupcakes.php"> cakes </option>
        <option value= "cookies.php"> cupcakes </option>
    </select>
</div>
and these css:
#selectedCat select {position: absolute;
top: 32px;
left: 880px; width: 240px;height: 34px; border:0;background:none;-webkit-appearance: none; appearance:none;-moz-appearance:none;color: white;
font-size:20px;font-family:Arial, Helvetica, sans-serif;}
i want to change the background of options to somthing like this: enter image description here
 
     
     
     
    