NEED A QUOTE? HAVE A QUESTION? WE’RE HERE FOR YOU
Contact your Local Representative
Call Us for more information!
CIMAT area sales manager
Błażej Krupa
Turbocharger reconditioning machines: PL, USA, CN, IN, IT, ZA, TR
Balancing machines for industry: CN, IN, KP, IT, TR.
Frédéric de Jaegher
FR, BE, NL, DE, AT, CH
Mykhaylo Shevtsov
CZ, HU, RO, BG, SK, FIN, NO, CIS
Ramon Fernandez
ES, PT, Central and South America
Piotr Dudziak
UK, USA
EUROPEAN HEADQUARTERS
City of Bydgoszcz, 85-862
Poland
AMERICAN SALES & SERVICE
1340 Grandview Pkwy.,Suite 200
Sturtevant,
WI 53177
#financing-overlay {
background: white;
border-bottom: 2px solid black;
border-top: 2px solid black;
bottom: 0;
color: black;
display: none;
left: 0;
padding: 20px;
position: fixed;
text-align: center;
width: 100%;
z-index: 999999999999;
}
// Get references to the select elements
const regionSelect = document.getElementById(“filter-region”);
const territorySelect = document.getElementById(“filter-territory”);
// Add event listener to the select elements
regionSelect.addEventListener(“change”, checkSelection);
territorySelect.addEventListener(“change”, checkSelection);
// Function to check the selected options
function checkSelection() {
// Get the selected values
const regionValue = regionSelect.value;
const territoryValue = territorySelect.value;
const financingOverlay = document.querySelector(‘#financing-overlay’);
financingOverlay.style.display = ‘none’;
// Check if “America” and “United States” are selected
if (regionValue === “5” && territoryValue === “6”) {
financingOverlay.style.display = ‘block’;
}
}