Index: location.admin.inc =================================================================== --- location.admin.inc (revision 2375) +++ location.admin.inc (working copy) @@ -57,6 +57,17 @@ '#description' => t('If you would like to change the macro used to generate the location chooser map, you can do so here. Note: Behaviors locpick and collapsehack are forced to be enabled and cannot be changed.'), ); + $form['location_province_autocomplete'] = array( + '#type' => 'radios', + '#title' => t('Province Autocomplete Setting'), + '#default_value' => variable_get('location_province_autocomplete', 0), + '#options' => array( + 0 => t('Return full province names.'), + 1 => t('Return province codes.') + ), + '#description' => t('Select whether you want the autocomplete field to return the full province name or the province code.') + ); + return system_settings_form($form); }