In that case could you use a css selector that locates all of the elements in the dropdown? Then instead of using the Select module you would have your test first click the dropdown box to expand the options and then do a click on the option you want.
So if $("css-selector") find 4 dropdown options, you would use $("css-selector")[2] to select the 3rd index (zero-based numbering).