Cabinet approves rail licensing bylaw, truck fleet incentives

Prime Minister Jafar Hassan chairs a Cabinet session on Wednesday, during which the 2026 amendment to the Railway Services Licensing Bylaw were approved (Petra photo)
Prime Minister Jafar Hassan chairs a Cabinet session on Wednesday, during which the 2026 amendment to the Railway Services Licensing Bylaw were approved (Petra photo)

AMMAN — The Cabinet, during a session chaired by Prime Minister Jafar Hassan on Wednesday, approved the 2026 amendment to the Railway Services Licensing Bylaw, in a move aimed at modernising the sector’s regulatory framework and enhancing operational efficiency.

The endorsed measures aligned with regional and international standards, while supporting the phased expansion of the national railway network and strengthening its role within the Kingdom’s transport system, according to a Prime Ministry statement.

The draft bylaw aims to regulate the contractual relationship between the regulator and licensees by refining the licensing framework to balance investment incentives with stronger oversight. It also aims to improve operational readiness and ensure the sector’s long-term sustainability.

Additional provisions cover the regulation of professional licensing and the enhancement of monitoring tools, intending to improve safety and service quality, boost compliance and governance, and strengthen data management across the sector.

The Cabinet also endorsed measures to accelerate the modernisation of the truck fleet by lowering the maximum import age for tractor units to five years and phasing out trucks older than 20 years through scrapping or re-export.

The package includes financial incentives, notably a full exemption from the 16 per cent general sales tax and waivers on registration and licensing fees.

The incentive period was extended to two years to provide operators with greater flexibility in upgrading their fleets.

The plan targets the modernisation of more than 8,300 trucks over two years, aiming to reduce operating and maintenance costs, improve fuel efficiency, minimise breakdowns and enhance the flow of goods.

The measures are also expected to stimulate the transport sector and related services, attract investment and support digitalisation efforts, while enabling operators to improve efficiency and gradually phase out outdated vehicles, the statement said.

As part of efforts to advance service infrastructure, the Cabinet approved the rehabilitation and operation of the Abu Al Zeighan desalination plant in Deir Alla at an estimated cost of $37 million, alongside a wastewater network project in southwest Amman valued at over JD16 million.

The desalination project is expected to increase water supply by treating water from 15 wells to produce around 12 million cubic metres annually. It forms part of a broader package funded by the European Investment Bank to improve water services.

The wastewater project will involve the construction of around 35 kilometres of networks in areas within Naour Municipality, aimed at enhancing sanitation services.

"Together, the projects are expected to benefit some 400,000 people," the statement read.

At the institutional level, the Cabinet also moved forward with procedures to approve a draft bylaw on labour inspectors for 2026, aimed at modernising inspection mechanisms and improving efficiency in line with evolving labour market dynamics and international best practices.

The draft emphasises coordinated joint inspection teams to reduce duplication and unify oversight, while strengthening compliance with labour laws and occupational health and safety standards. It also supports the development of a unified electronic inspection system and encourages formalisation of the workforce.

The Cabinet also approved the administrative regulation for the Ministry of Youth for 2026, aimed at updating its organisational structure and establishing new units in line with evolving priorities.

These include a unit for the Hussein Bin Abdullah II Award for Voluntary Work, a Youth, Peace and Security unit aligned with UN Security Council Resolution 2250, and a National Guidance unit to enhance youth-focused programmes.

The Cabinet approved a draft bylaw on the rewards and savings fund for employees of Al Balqa Applied University, aimed at strengthening governance, improving resource allocation and supporting sustainable financial planning to ease future budgetary pressures.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });