It sounds like you want users to input geographic information, like an address or zipcode into the text search. This is how I did it, though I'm not sure how it scales yet. I just finished this 5 minutes ago.
You should create a custom search form subclassed from SearchForm or one of the other options (for me it was FacetedSearchForm). Overwrite the search method.
First turn the search string into a point. http://code.google.com/p/geopy/wiki/GettingStarted
class MainSearchForm(FacetedSearchForm):
def search(self):
query = self.cleaned_data['q']
g = geocoders.Google()
place, (lat, lng) = g.geocode('%s' % query)
pnt = fromstr('POINT(%s %s)' % (lng, lat), srid=4326)
Then take the search query set, I used RelatedSearchQuerySet since it allows you to use load_all_queryset() which is where I filtered by distance. It's GeoDjango to the rescue with GeoDjango Distance Queries. With the distance query, you can choose how to filter with distance less than, greater than etc. And the distance itself, in whatever units you want.
sqs = RelatedSearchQuerySet().load_all()
sqs = sqs.load_all_queryset(Listing,
Listing.objects.filter(location__distance_lte=(pnt, D(mi=20))))
return sqs
That should be a solid start. Hope this points you in the right direction.