Send to the Server then Display response

so here’s my script to do this, will someone please please check it for me. It’s supposed to send to a php script on my server, then take the response and display it within a scroller box (using the flash mx scroller component). Did I do this write?

[AS]function submitForm()
{
formData = new LoadVars();
formData.submit = “submit”;
formData.dealer = “stores”;
formData.txtZip = “”;
formData.cboDist = cboDist.getValue();

response = new LoadVars();
response.onLoad = myOnLoad;

formData.sendAndLoad(“zipcodesearch.php”, response, “post”);
}

function getResponse(result)
{
if(result == true)
{
loadVarsText = new loadVars();
loadVarsText.load(“textfield”);
loadVarsText.onLoad = function(success) {
if (success) {
trace(“done loading”);
scroller.html = true;
scroller.htmlText = this.textfield;
} else {
trace(“not loaded”);
}
}
}
}[/AS]