Ciao.
Tanto per darti un'idea:
Codice PHP:
var listCombo = new Array(); //lista contenitore
function DettaglioCombo(idCombo,valoreCombo){
    
this[idCombo]=valoreCombo;
}
function 
test(idCombo,valoreCombo){
    var 
o= new DettaglioCombo(idCombo,valoreCombo);
    
listCombo.push(o);
}
new 
test('idCombo','valoreCombo');
alert(listCombo);