$(function(){ var optionVal = 0; $('select').on('change', function (e) { optionVal += +$(e.target).val(); $('#price').text(optionVal); }); });