Elmcity does a simple search for a keyword in the event title. Try "Lancaster" for example. You'll get events in the UK, PA, NY OH and CA. You can also search for a non-location based word in the title like "picnic" and the script returns events.
However, you can query for events by location. With the graph API you can use the "Center" parameter in a search query:
https://graph.facebook.com/search?q=*&type=place¢er=37.76,-122.427&distance=1000
With FQL there is the distance function:
SELECT page_id FROM place WHERE
distance(latitude, longitude, "37.76", "-122.427") < 1000
With both of these the maximum distance is 50000 and is expressed in meters. There are limits to the number of records that are returned by each of these queries.
Neither one of these methods is well documented. I've personally found FQL to return more predictable results than the Graph API for these queries.