I have a form, that after submit the form I want to run the script of google Adwords conversion.
I\'m using ajax and jQuery:
var dataString = \'name=
Just a guess, but may be conversion script expects to see it's variables in Global scope. In your code you define it in local scope - under callback
So instead of var google_... write window.google_...
var google_...
window.google_...
HTH