I can make Firefox not display the ugly dotted focus outlines on links with this:
a:focus { outline: none
Simply add this css for select box
select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #000; }
This is working fine for me.