/**
 * @author: Mariusz Tereszczuk.
 */

$(document).ready(function(){

    $.ajax({
            url: "modules/praca/reposit/city-wszystkie.xml",
            dataType: "xml",
            success: function( xmlResponse ) {
                    var data = $( "city", xmlResponse ).map(function() {
                            return {
                                    value: $( "name", this ).text()
                            };
                    }).get();
                    $( "#region" ).autocomplete({
                            source: data,
                            minLength: 0
                    });
            }
    });
   
});

