If you're talking about adding an image inside each OPTION tag itself, you can't just use an IMG tag to do this. One doesn't go in the other. What you can do is use a non repeating background image, and use CSS to add that background to the option. For example:
Code:
<select>
<option style="background: url(usa.gif) left center no-repeat; padding-left: 30px">This is an option</option>
<option style="background: url(canada.gif) left center no-repeat; padding-left: 30px">This is an option as well</option>
</select>
The "30px" is to provide enough space, so the background image and OPTION text don't overlap. This is the gist anyway.
Bookmarks