jquery selected option attribute
$('select[name=city]').change(function(){ if($(this).val()!=''){ $('#city_info').html('Срок доставки до ПВЗ в рабочих днях из Санкт-Петербурга: '+$(':selected',this).attr("data-term")+' дн.'); } else{ $('#city_info').html(); } });