I would recommend using a pattern called JSONP.
Essentially you have JavaScript functions which can process JSON encoded data.
You use AJAX to make a request of the server (sending any data you want) along with the name of a function that will handle the response.
The server processes the received data and encodes it using json_encode().
It then wraps it with the name of the function that will handle it.
Then it supplies the appropriate header to make the client process the response as JavaScript.
I use the prototype library for this as it is much easier to work cross-platform (
http://prototypejs.org).