Here is some stuff that I get back from google maps geocoding type of thing: _xdc_._fidf3f && _xdc_._fidf3f( { "results" : [ { "address_components" : [ { "long_name" : "4000", "short_name" : "4000", "types" : [ "street_number" ] }, { "long_name" : "Kresge Way", "short_name" : "Kresge Way", "types" : [ "route" ] }, { "long_name" : "Louisville", "short_name" : "Louisville", "types" : [ "locality", "political" ] }, { "long_name" : "Jefferson", "short_name" : "Jefferson", "types" : [ "administrative_area_level_2", "political" ] }, { "long_name" : "Kentucky", "short_name" : "KY", "types" : [ "administrative_area_level_1", "political" ] }, { "long_name" : "United States", "short_name" : "US", "types" : [ "country", "political" ] }, { "long_name" : "40207", "short_name" : "40207", "types" : [ "postal_code" ] } ], "formatted_address" : "4000 Kresge Way, Louisville, KY 40207, USA", "geometry" : { "bounds" : { "northeast" : { "lat" : 38.2385524, "lng" : -85.64056529999999 }, "southwest" : { "lat" : 38.2385403, "lng" : -85.6405755 } }, "location" : { "lat" : 38.2385403, "lng" : -85.64056529999999 }, "location_type" : "RANGE_INTERPOLATED", "viewport" : { "northeast" : { "lat" : 38.2398953302915, "lng" : -85.63922141970849 }, "southwest" : { "lat" : 38.2371973697085, "lng" : -85.6419193802915 } } }, "types" : [ "street_address" ] } ], "status" : "OK" } ) What I want is the "long_name" part where it's types = "administrative_area_level_2 and political. Can you tell me the best way to get to that?