$.getJSON("php_file.php",function(data) {
// "data" is the echoed encoded array from the php file.
// "array"."city name"."'air' or 'sea'"."number value that is in the PHP file"
data.Caracas.air.4 // this is how you access the data inside the array
});