yep..
simple..
you use this query as source of the combobox:
SELECT town, municipality from TableXX
you don't show the municipality in the combobox and on AfterUpdate event you write this code:
textfieldMunicipalty.Value=combobox.column(1)
' 1 because the count starts from 0
That's it..