Does it really need to be done using POST? Personally I would use GET and do it the following way:
Code:
ajaxRequest.open("GET", "players.php?limit=" + limit, true);
Then just make the appropriate change in the PHP file.
If it's absolutely necessary for it to be done using POST then sorry for not being much help there.