$("#Client").on('input', function () {
var val = this.value;
if($('#ClientList option').filter(function(){
return this.value.toUpperCase() === val.toUpperCase();
}).length) {
$("#Client").trigger('focusout');
$.ajax({
url: 'z_ajax_load_data.php',
dataType : "json",
data: {
q: this.value,
type: 'getAddress'
},
success: function (data) {
//заполняем нужные поля данными из data
}
});
}
});