I have one drop down i want to get value of price, and it has be plus with already one price available at up.
<p class="price">USD 200<p>
<select name="options[7]" id="select_7" class=" required-entry product-custom-option">
<option value=""></option>
<option value="13" price="15">Medium 14.5cm +USD15.00</option>
<option value="14" price="35">Large - 16.5cm +USD35.00</option>
</select>
I want whenever any value from drop down changed than price attr needs to be add to the base price at <P> tag.
Also if someone deselect value than it has be minus from base price at <p> tag.
How can i achieve that ?
Any help would be appreciate. Thanks In advance.