How to show an image while we select the option below.
Example : -
<select name="payment">
<option value="">Please Select</option>
<option value="Paypal">Paypal</option>
<option value="Bank">Bank</option>
</select>
<div id="payment"><img src="paypal.gif" alt="paypal" /></div>
If we select paypal on div id="payment"
will show the logo paypal and if bank will show bank logo.
Can be done with jquery? let me know.