What are you binding your dropdown to?
Dropdowns, like listboxes and galleries, are typically bound to tabular data sources (tables), with one or more columns. The shell will make it possible for you to specify which of the columns/fields will be rendered in the dropdown. However, selecting one item will select the entire corresponding row of input.
For example, assuming that you have a data source Employees with the following fields: Name, Category, Title.
dropdown.Items = Employees
Value = Name
The specifics of "Vendor" vs "FTE" will be part of your tabular data, and will show up in the dropdown automatically.
If on the other hand you just want to show a simple dropdown that lets you select between two options "Vendor" vs "FTE", do this instead:
dropdown.Items = ["Vendor", "FTE"]
It all depends on what your scenario calls for.