Use this code snip to search for wireless access points (hotspots) in any city.
OS version: OS X
set my_town to "AnyTown"
tell application "Finder"
display dialog ¬
"What's the name of your town?:" default answer my_town ¬
buttons {"OK"} default button 1
set my_town to text returned of the result
tell application "Safari"
activate
open location ¬
"http://www.ezgoal.com/hotspots/wireless/s.asp?qu=" & ¬
my_town
end tell
end tell