--- handlers/location_views_handler_filter_proximity.inc.org	2010-04-11 13:53:51.000000000 +0100
+++ handlers/location_views_handler_filter_proximity.inc	2010-04-15 10:38:34.000000000 +0100
@@ -136,8 +136,19 @@
     );

     $form['value']['search_distance'] = array(
-      '#type' => 'textfield',
+      '#type' => 'select',
       '#title' => t('Distance'),
+      '#options' => array(
+         '' => t('Distance'),
+        '1' => t('1'),
+        '5' => t('5'),
+        '10' => t('10'),
+        '25' => t('25'),
+        '50' => t('50'),
+        '100' => t('100'),
+        '250' => t('250'),
+        '3000' => t('All'),
+      ),
       '#default_value' => $this->value['search_distance'],
     );

