function populateSuburbs()
{
    var $j = jQuery.noConflict();
    
    $j(function(){
        var u = 'http://'+window.location.hostname+'?page=api_speed&content=main&params=feed:suburb_region_enhanced_groupings;filter:suburb_region_enhanced_groupings;';
//        $('one_liners_suburbs').value = '';

        var t5 = new $j.TextboxList('#one_liners_suburbs', {

            unique: true,

            plugins: {
                autocomplete: {
                    minLength: 1,
                    queryRemote: true,
                    onlyFromValues: true,
                    remote: {
                        url: u
                    }
                }
            }
        });
//        var ids = data.split(",");
//        for(var i in ids) {
//            t5.add(ids[i]);
//        }
    });
}