Jan 12th, 2015, 10:52 AM
You could just create another form and import* the cities into it, then connect it to the original form under Fields, Dropdown Settings, Option List / Contents, then select the city form/field from the options under Form Field Contents.
* Import something like this:
ft_form_4 = your city form table name in FormTools
my_cities = your existing table of city names
INSERT INTO ft_form_4 (city_field) SELECT city FROM my_cities;
* Import something like this:
ft_form_4 = your city form table name in FormTools
my_cities = your existing table of city names
INSERT INTO ft_form_4 (city_field) SELECT city FROM my_cities;