I have a situation where I have a form containing a select object and a textbox. The select object contains streetnames. What I want to do is have the textbox filled with the proper street suffix (e.g., street, lane, etc.) when the user selects a street name. Is there any way to pass the index value from the select object with an onChange event to a function and then use that index value in the function to set the textbox's value property? Thanks in advance.