Take a look at this post. It loops through all the options of a select box and checks for those which are selected. You can then construct a query string based on that.
For eg. if you have a select box name "selBox" from which you have selected two options "one" and "two", your query string should look like: url += "&selBox=one&selBox=two"
; Here one and two would come from the snippet I just pointed you to.