$(document).ready(function () {
    $('#profil').keyup(function () {
        $('#profil_result_list').show();
        var profile = $('#profil').val();
        var lang = $('#search_form').attr("lang_code");        
        var manufacturer = $('#manufacturer').val();
        $.ajax({
            method: "get",
            url: "includes/ajax/suggestProfile.php",
            data: 'profile='+profile+'&lang='+lang+'&manufacturer='+manufacturer,
            success: function (html) {
                $('#profil_result_list').html(html);
            }
        })
        return false;
    });
    $('#profil_result_list a').live("click",function () {
       var profile = $(this).text();
       $('#profil').val(profile);
       $('#profil_result_list').hide();
        return false;
    });

});

