Possible to pass through a javascript variable through a form submission?

Hey there! I have a form on one domain that has a thank you page on an external domain. I am trying to pass through a variable.

Currently the URL parameter looks like this:

d=4396486&inf_contact_key=19a0ae7b09c75c66c67a8eb823e91b71dcd43eaff8ca03dc1d15424b3c75c21d&inf_field_BrowserLanguage=en-US%2Cen%3Bq%3D0.9%2Cla%3Bq%3D0.8&inf_field_Email=me%2Btestlead%40austinpena.com&inf_custom_DirectMailioURL=

I would like to add an additional variable to that URL.

Page here: Tax Sale Blueprint

Setup a PHP file as your thank-you page, it reads the current GET variables into an array, then adds whatever you want to that, and then forwards the traffic to your desired page with your GET variable added.

Makes sense, thanks