After extensive searching, I have found 2 reasonable approaches for creating custom pure-css select drop-downs.
Approach #1. Original article here
Wrap the select element in a div with a fixed width (say 150px) and overflow hidden.
Then give the select element a width of about 20px greater than the div.
The result is that the default drop-down arrow of the select element will be chopped off, and you can place any background image you want on the right-hand-side of the div.
The advantage of this approach is that it is cross-browser (IE8+,Webkit,Gecko) however
the disadvantage of approach is that the options drop-down juts out on the right-hand-side (by the 20px which we hid.... because the option elements take the width of the select elment)
[Here's a demo of this approach]
Approach #2 Original post here
Use the pointer-events property.
The idea here is to overlay an element over the native drop down arrow (to create our custom one) and then disallow pointer events on it.
Advantage: No extra markup, works well in Webkit and Gecko.
Disadvantage: IE doesn't support pointer-events. (even IE10), which means you can't click the custom arrow. Also, another (obvious) disadvantage with this method is that you can't target your new arrow image with a hover effect or hand cursor...because we have just disabled pointer events on them!
However with this method you can use Modernizer or conditional comments to make IE revert to the standard built in arrow.
This, in my opinion is the best available solution to date. (at least until the appearance property gets wider browser support)
Here is a fiddle [which uses the second approach together with IE conditionals] where you can verify this.
EDIT:
Being that IE10 doesn't support conditional comments anymore - If you want use Approach #2 you should probably use Modernizr, however it is still possible to exclude the pointer-events css from IE10 with a css hack described here.
Note: I have updated the above fiddle with this.