Here\'s my PHP code called during jQuery AJAX call:
In your $.post call, the last argument could be the data-type: json:
$.post
json
$.post(url, {ID:$('#ddlClients').val()}, function(Result){ alert(Result.Address_1); },'json' );
Everything should work then, as it looks like you are doing everything right.