How to add mouseover text for each select box item?

Hi all,
I want to add a mouse over text for each select box items in a select box…

Means, when user moves cursor in the select box items, based on the item related text will be shown up as a mouse over text.

How to do this?

Help me regarding this…

Thanking you, in advance…

You can add the title attribute to the options:

<select>
	<option title="This is Option 1"> - 1 - </option>
	<option title="This is Option 2"> - 2 - </option>
	<option title="This is Option 3"> - 3 - </option>
</select>