A family of Microsoft relational database management systems designed for ease of use.
You need to review your table design. You should have a lookup table for your POS_Description like this:
tluPositions
PositionID (PK autonumber)
Position
In your employee table, you should have a foreign key for PositionID that will store the corresponding PositionID for that employee.
Now, to get a listing of specified positions a listbox as Tom suggested. This article shows how Microsoft Access tips: Use a multi-select list box to filter a report (allenbrowne.com)
The relevant properties of your listbox should be:
RowSource:
SELECT PositionID, Position FROM tluPositions ORDER BY Position;
BoundColumn = 1