Buonasera forum,
come faccio a convertire questo codice javascript in jquery?

codice:
function reload_materiale() {    
    select_materiale.options[0]=new Option("Scegli un'opzione", "null", true, true);
    select_materiale.options[1]=new Option("0", "0", false, false);
    select_materiale.options[2]=new Option("PVC", "pvc", false, false);
    select_materiale.options[3]=new Option("TempotestParà", "tempotest", false, false);
}
Grazie