| Value |
Code |
| Auger 100x700mm |
107 085 |
| Auger 150x700mm |
107 086 |
| Value |
Code |
| Auger 100x1000mm |
107 074 |
| Auger 150x1000mm |
107 075 |
| Auger 200x700mm |
107 979 |
| Auger 200x1000mm |
107 076 |
| Auger 250x1000mm |
107 077 |
| Auger 300x1000mm |
107 078 |
jQuery(function($) {
$(function () {
$('#tipo_broca2').change(function () {
$('.tabela_brocas').hide();
if ($(this).val() == "None") {
$('#empty').show();
}
if ($(this).val() == "BCS") {
$('#tableBCS').show();
}
if ($(this).val() == "BRCG") {
$('#tableBRCG').show();
}
if ($(this).val() == "BRCNS") {
$('#tableBRCNS').show();
}
if ($(this).val() == "BCCNS") {
$('#tableBCCNS').show();
}
if ($(this).val() == "BRCS") {
$('#tableBRCS').show();
}
});
});
});