View file Web Template Ktpl/package/templates/ktpl/js/fields/city.js
$(function(){
$('#location_group').on('input', function (){
v = $(this).val();
if(v){
$('#output_string').parent().show();
} else {
$('#output_string').parent().hide();
}
}).trigger('input');
});