im populating a combobox control with a name and surname that comes out of my database but need to put a space inbetween the name and surname
otherwise the values look like this

JohnDOE
and i need it to be
John DOE

here is my coding for the options for the combobox control
how do i do it????


<option value="<%=(RSGroup.Fields.Item("GroupManagerID").Value)%>" ><%=(RSGroup.Fields.Item("ManagerName").Value)%><%=(RSGroup.Fields.Item("ManagerSurname").Value)%> </option>