var production = ['100','200','300','400'];
var production = ['100','200','300','400'];
$("input[name='company']").change(function() {
document.querySelectorAll('.work-id span')
.forEach((span, index) => span.textContent = production[index])
});