The select element is a poor match for your requirements because it only has a single node binding. Instead of trying to subvert the control's semantics in that way, I would use a repeat of trigger elements with insert and delete actions, styled with CSS in such a way as to provide the appearance of a multi-selection control.
Your question doesn't mention the format of the data, but supposing instance data like this:
<xf:instance id="options">
<options xmlns="">
<option selected="false">
<first />
</option>
<option selected="false">
<second />
</option>
<option selected="false">
<third />
</option>
<option selected="false">
<fourth />
</option>
<option selected="false">
<fifth />
</option>
</options>
</xf:instance>
<xf:instance id="results">
<results xmlns="" />
</xf:instance>
Then you should be able to get the behaviour you want with something along these lines (not tested):
<xf:repeat id="repeat" nodeset="instance('options')/option">
<xf:trigger appearance="minimal">
<xf:label>
<xf:output value="name(*)" />
</xf:label>
<xf:action ev:event="DOMActivate" if="@selected = 'false'">
<xf:setvalue ref="@selected" value="'true'" />
<xf:insert
origin="instance('options')/option[index('repeat')]/*"
context="instance('results')"
nodeset="*"
at="count(../*)"
position="after"
/>
</xf:action>
<xf:action ev:event="DOMActivate" if="@selected = 'true'">
<xf:setvalue ref="@selected" value="'false'" />
<xf:delete nodeset="instance('results')/*[name(.) = name(current()/*)]" />
</xf:action>
</xf:trigger>
</xf:repeat>