Ok I figured out a way to do this using
$(‘#ClientName’).bind(‘change’, function(event) {
var value = $(“#ClientName”).val();
});
the only problem is I get a double hit on this. First I get the typed string ie ‘Sun’ then I get the company name ‘Sunnyland’ is there a condition I can add to only send the values to the server once the complete value is selected.