I have a dropDownListFor in my view, like this:\[code\]`@Html.DropDownListFor(x => x.idResponsaveis, Model.responsaveis) <input type='button' value='http://stackoverflow.com/questions/12699958/Adicionar' onclick='adicionarResponsavel()' class='btn' />`\[/code\]and i need add multiples dropDownList ever the user click in adicionarResponsavel().My javascript code is:\[code\]function adicionarResponsavel(){ var div = document.getElementById('listaResponsaveis'); var node = document.createElement('div'); node.setAttribute('id', 'div' + quantity); node.appendChild('@Html.DropDownListFor(x => x.idResponsaveis, Model.responsaveis)'); div.appendChild(node); }\[/code\]The specific line with error is:\[code\]node.appendChild('@Html.DropDownListFor(x => x.idResponsaveis, Model.responsaveis)');\[/code\]