var total;
$("select").change(function() {
total = 0;
$('select :selected').each(function(i,item){
total += Number( $(item).attr('data-price') );
});
$('#my-total').text(total);
})
function is_touch_device() {
return !!('ontouchstart' in window);
}