Best Answer SmetDenis , 17 March 2017 - 09:03
Я бы это сделал через jQuery
$('select').change(function(){
var value = $(this).val();
if (value == '42') {
$('.place').text('My text');
} elseif (value == '42') {
$('.place').text(' ');
}
});
Go to the full post










