Skip to content

Category: Uncategorized

  Choosing and building a perfect career is one of the most important decisions in a person’s life. It is not something that happens overnight; rather, it is a continuous process that starts from early college days and extends throughout one’s life. A perfect career not only ensures financial stability but also provides job satisfaction,

pakcareerdesk@gmail.com
April 8, 2025

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

pakcareerdesk@gmail.com
January 23, 2025
document.addEventListener("DOMContentLoaded", function () { const disciplines = { "Engineering": ["Electrical Engineering", "Mechanical Engineering"], "Medical Sciences": ["MBBS", "BDS"], "Arts": ["Fine Arts", "Performing Arts"], "Business": ["BBA", "MBA"], "Social Sciences": ["International Relations", "Psychology"] }; const citiesByProvince = { "Punjab": ["Lahore", "Multan"], "Sindh": ["Karachi", "Hyderabad"], "Islamabad": ["Islamabad"] }; const fieldSelect = document.getElementById("field"); const disciplineSelect = document.getElementById("discipline"); const provinceSelect = document.getElementById("province"); const citySelect = document.getElementById("city"); if (fieldSelect) { fieldSelect.addEventListener("change", function () { const selectedField = this.value; disciplineSelect.innerHTML = ''; if (disciplines[selectedField]) { disciplines[selectedField].forEach(function (d) { const opt = document.createElement("option"); opt.value = d; opt.text = d; disciplineSelect.appendChild(opt); }); } }); } if (provinceSelect) { provinceSelect.addEventListener("change", function () { const selectedProvince = this.value; citySelect.innerHTML = ''; if (citiesByProvince[selectedProvince]) { citiesByProvince[selectedProvince].forEach(function (c) { const opt = document.createElement("option"); opt.value = c; opt.text = c; citySelect.appendChild(opt); }); } }); } });