Dojo - Is select being parsed

http://stackoverflow.com/questions/16257448/how-to-avoid-dojo-to-parse-an-element

HTML

<script>
    var v16 = "https://ajax.googleapis.com/ajax/libs/dojo/1.6.0/dojo/dojo.xd.js.uncompressed.js";
    var v18 = "https://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dojo/dojo.js";
    var dojoUrl = v16;
    document.writeln("<script src='" + dojoUrl + "'></scr" + "ipt>");
</script>
<table border="1">
    <tr>
        <th scope="row">
            <div id="inlineEditBox1" dojoType="dijit.InlineEditBox">Stuff</div>
        </th>
        <td>
            <select id="select1">
                <option value="1">1</option>
                <option value="2">2</option>
                <option value="3">3</option>
                <option value="4">4</option>
                <option value="5">5</option>
            </select>
        </td>
    </tr>
</table>
<button click="teste">

</button>

JavaScript

function teste(){
	console.log("ohh yeah");
}