Autocomplete and Mapping XML data

Autocomplete and Mapping XML data

I'm trying to follow JQuerUI's example wtih mapping XML from an AJAX Response to an autocomplete textbox.

I feel like im following the example, but not sure where im going wrong. here is my code:

  1.     $.ajax({
  2.         type: "POST",
  3.         async: true,
  4.         timeout: null,
  5.         url: "ASNProxy.asmx/getStoresOnPO",
  6.         dataType: "xml",
  7.         data: { xmlDoc: criteria },
  8.         success: function (xmlResponse) {
  9.             var data = $("STORE", xmlResponse).map(function () {
  10.                 return {
  11.                     value: $("STORE_NAME", this).text(),
  12.                     id: $("STORE_NO", this).text()
  13.                 };
  14.             }).get();
  15.             $("#txtNewFromStoreNo").autocomplete({
  16.                 source: data
  17.             });
  18.         }
  19.     });  

  20. And Here is my XML: I've test the webservice, and the result in the debugger, so i know it's returning ok...i think.
  21. <?xml version="1.0" encoding="UTF-8"?>
  22. -<RESULT>
  23.   -
  24.   <RETURN>
  25.     <CODE>0</CODE>
  26.     <MESSAGE>6</MESSAGE>
  27.   </RETURN>
  28.   -<DATA>
  29.     -
  30.     <STORE_LIST>
  31.       -<STORE>
  32.         <STORE_NO>1101</STORE_NO>
  33.         <STORE_NAME>VANCOUVER DOWNTOWN</STORE_NAME>
  34.       </STORE>-<STORE>
  35.         <STORE_NO>1125</STORE_NO>
  36.         <STORE_NAME>SOUTHGATE</STORE_NAME>
  37.       </STORE>
  38.       -<STORE>
  39.         <STORE_NO>1144</STORE_NO>
  40.         <STORE_NAME>MARKET MALL</STORE_NAME>
  41.       </STORE>
  42.       -<STORE>
  43.         <STORE_NO>1560</STORE_NO>
  44.         <STORE_NAME>DOWNTOWN</STORE_NAME>
  45.       </STORE>-<STORE>
  46.         <STORE_NO>1601</STORE_NO>
  47.         <STORE_NAME>MAIN</STORE_NAME>
  48.       </STORE>-<STORE>
  49.         <STORE_NO>1611</STORE_NO>
  50.         <STORE_NAME>POINTE CLAIRE</STORE_NAME>
  51.       </STORE>
  52.     </STORE_LIST>
  53.   </DATA>
  54. </RESULT>