The Kia Cerato is a stylish sedan designed for comfort and fuel efficiency. Perfect for navigating Dubai’s busy streets, it’s an ideal choice for those who value practicality.
Horse Power
128
Seat
5
Deposit
375 €
Category
Economy Cars
Car Booking
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// Attendre que la page soit entièrement chargée
document.addEventListener("DOMContentLoaded", function () {
// Cible toutes les divs avec la classe "price-unit"
const priceUnits = document.querySelectorAll(".price-unit");
// Parcourt chaque élément trouvé
priceUnits.forEach(function (unit) {
if (unit.textContent.trim() === "AED") {
// Remplace "AED" par "€"
unit.textContent = "€";
}
});
});