Try using the defaultValue attribute:
<xp:comboBox id="combo1" >
<xp:this.defaultValue><![CDATA[#{javascript:context.getUrlParameter("someParameter")}]]></xp:this.defaultValue>
</xp:comboBox>
Also: make sure that the value you're trying to set as a default value is available in the list of options for the combobox ("value" attribute).
Mark