$(document).ready(function(){
    jQuery('#radioModel').autocomplete("/radioModels.php", {
        extraParams:{ id: function(){return jQuery('#radioManufacturer option:selected').val();}},            
        matchContains: 1,        
        minChars: 3
        }
    );    
    jQuery('#radioModel').result(ShowConnector);
});

