[jQuery] jQuery Validation Question - remote Rule

[jQuery] jQuery Validation Question - remote Rule


Hi All,
Below is a validation method I used to validate if a a record already
exists:
    GroupName: {
        required: true,
        minlength: 2,
        remote: "is_exists.asp?to=<%=Encrypt("CompanyGroups","",
0)%>&current=<%=sGroupName%>"
    }
How can I put additional data to the remote rule? The data I want to
append came from one of the data in the form. Can I do the following?
remote: "is_exists.asp?to=<%=Encrypt("CompanyGroups","",0)%>&current=<
%=sGroupName%>&assigned_to="+$('#AssignedTo').val()
What I want here is to pass a value to "assigned_to" query string.
Thanks
Nimrod