You just need to do the reverse, for a given string, what's the correct type.
EmployeeType result =
(EmployeeType)Enum.Parse(typeof(EmployeeType),
combobox1.SelectedItem.Content);
P.S. I dont know if combobox1.SelectedItem.Content
is correct, I don't do that much WCF.