I am using Joomla 1.6 and I have created a text field in registration form (which is driven by components\com_users\models\forms\registration.xml) like this:
<field name="City" type="text"
description="COM_USERS_DESIRED_CITY"
filter="string"
label="COM_USERS_REGISTER_CITY_LABEL"
message="COM_USERS_REGISTER_CITY_MESSAGE"
required="true"
size="30"
/>
Now I want to convert this text field (city) to select box, is it possible?