I need to change the value of select option to the value selected in the select field and also i need to update the price on change of the select option , How to do by using jquery
$a =5000;
$b=225;
$c=25;
<p> base fair echo $a</p>
<p id='options'>value of select option 250</p>// change price depending on select option
<p> tax </p> echo $b
<p>other charges</p> echo $c
<p>Total price </p> echo $a+250+$b+$c// change price once the select option changes
<select>
<option value="250">250</option>
<option value="300">300</option>
<option value="350">350</option>
<option 400="audi">400</option>
</select>