Well, if your array was a single dimension, you could use the Join() function, but that doesn't look like that will work for you. You'll probably have to make a function to check the array:
Code:
<%
Function checkArrayForEmpl(aPeople, sPerson)
Dim iCounter
checkArrayForEmpl = False
If IsArray(aPeople) Then
For iCounter = 0 To UBound(aPeople)-1
If aPeople(iCounter,"Employee") = sPerson Then
checkArrayForEmpl = True
Exit For
End If
Next
End If
End Function
%>
<option <% if checkArrayForEmpl(FP_Field, "Jim") then %> selected <% end if %>>Jim</option>
<option <% if checkArrayForEmpl(FP_Field, "Ken") then %> selected <% end if %>>Ken</option>
I didn't test this, so there are bound to be errors, but the idea is that you need to iterate through the array and check to see if the string matches any rows.