CSS Appearance Example

HTML

<!-- You can use the appearance property to remove default native styling, or to mimic native styling of other native elements -->
<select id="menulist">
    <option value="one">One</option>
    <option value="two">Two</option>
    <option value="three">Three</option>
</select>

<select>
    <option value="one">Native</option>
</select>

CSS

#menulist {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height:20px;
    border:1px solid rgb(156,156,156);
    width:250px;
    text-indent: 8px;
    /**
     * replace this background url with a proper arrow asset
     **/
    background: ) no-repeat 90% 50%;
    background-size: 15px 10px;
}