$(function () {
    var slt=document.getElementById(“usertype2”);
    var objOption=document.createElement(“OPTION”);
    objOption.value=bussinessType3;
    objOption.text=bussinessType3;
    slt.add(objOption);
    slt.options[slt.options.length-1].selected=‘selected’;
    })