I have searched but cannot find the jQuery selector that gets an element by a title. So I would be trying to get a handle on the dropdown with title ==\'cars\'
Eg:
Use the attribute-equals selector, like this:
$("select[title='cars']")
There are other attribute selectors available as well if the need arises :)