I am wondering how can I multiply an element value by selecting from <option>
tag?
for example I have a <input type='text' value='9'> text tag
or <span>9</span> tag
and I want to multiply its value by selecting option tag
likewise
<select name="" id="">
<option value="1/month">1/month</option>
<option value="2/month">2/month</option>
<option value="3/month">3/month</option>
<option value="6/month">6/month</option>
<option value="12/month">12/month</option>
</select>
how to do this?
thanks.