Hi,
Yes this is possible, although you would have to code the functionality, and how complex depends on how you enter the initial data, if you have a number of fields for the trustees, then you could just code to add and remove the names of trustee's as they are added. Then you would need to use some sort of information to be able to link back to the set of fields that contain the information.
I would be tempted to create the fields for the trustees something like
Name - Trustee1.name - Trustee2.name - .......
Address Line 1 - Trustee1.addressLine1 .......
Phone Number - Trustee1.phoneNumber .....
Hopefully you get the idea, and then when you are adding them to the drop down list, you have the method to insert which allows you to provide a value shown to the user, and an export value, which could be "Trustee1"
Then when it is selected, in the fields that follow the drop down you could populate them using the following
(example code, not checked but to give the idea)
this.getField("selectedTrusteeName").value = this.getField( event.value + ".name").value
this.getField("selectedTrusteeAddressLine1").value = this.getField(event.value + ".addressLine1").value
And this could be triggered on the validate of the drop down list, therefore updating when the value is changed.
If you are able to provide a sample of how far you have come then we can provide more tips/guidance as to how to complete this task.
Hope this helps
... View more