Currently, I am able to send one parameter to the controller using the code snippet below in Javascript:
<g:javascript>
var sel = "test";
<g:remoteFunction action="newExisting" method="GET" update="updateThis" params="'sel='+sel"/>
</g:javascript>
However, I am struggling to figure out the correct syntax to add a second parameter.