Hi Guys

I need to provide an interface to configure some settings - the settings are stored as XML.
I would like to populate a combo box with a list of tags and upon selection a group of textboxes should be populated with the information. I'l use an example to better explain.

<Account>
<id>1</id>
<name>test</name>
</Account>
<Account>
<id>1</id>
<name>test</name>
</Account>

The combobox should be populated with all the id's and when an id is selected a text box should display the name value.
Is this possible, if so how?

Thanks Guys