Passing Javascript Variable to PHP using Ajax

...
data: {
    userId: onlyID,
    credoff: credoff
},
...

Or you can do this:

data: "userID=" + onlyID + "&credoff=" + credoff

don't forget the ampersand! &