awoth,
var parts = [{
type: 'b#1',
model: 'FD016',
width: 24,
depth: 48
}, {
type: 'b#1',
model: 'FD017',
width: 24,
depth: 60
}, {
type: 'b#2',
model: 'FD018',
width: 24,
depth: 72
}, {
type: 'b#2',
model: 'FD019',
width: 24,
depth: 96
}, {
type: 'b#3',
model: 'FD020',
width: 24,
depth: 120
}],
input = $("#input") ; // ваш input, куда нужно вставить model
function find() {
var depth = $('#depth').attr("value"),
width = $('#width').attr("value") ;
parts.some(function(x) {
if(x.width == width && x.depth == depth) {
input.val(x.model) ;
return true ;
} ;
}) ;
}
// и когда вам нужно вызываете функцию find()