Dependent Dropdown JavaScript Syntax Error
I pulled up instructions to write JavaScript to make a dependent dropdown but I keep getting a syntax error and I can't figure it out. Can someone help? I've never done this before so forgive me for missing the obvious. Thank you!
var f = this.getField(“Program”);
switch(event.value){
case “RSI - The Refrigeration School"
f.setItems([“AOS in Mechanical Maintenance Engineering”, “AOS in Mechanical Maintenance Engineering MTP”, “Electrical Applications”, “Electrical Applications MTP”, “Electro-Mechanical Technologies”, “Electro-Mechanical Technologies MTP”, “Refrigeration Technologies”, “Refrigeration Technologies MTP”, “Welding Specialist”, “Welding Specialist MTP”]);
break;
case “TWS Tulsa"
f.setItems([“AOS in Welding Technology”, “AOS in Welding Technolgoy MTP”, “Electrical Applications”, “Electrical Applications MTP”, “Electro-Mechanical Technologies”, “Electro-Mechanical Technologies MTP”, “Refrigeration Technologies”, “Refrigeration Technologies MTP”, “Professional Welder”, “Professional Welder MTP”]);
break;
default:
f.setItems([""]);
}

