ncaught ReferenceError: showDiv is not defined at HTMLSelectElement.onclick (adminuser.php?_ijt=24hp6mhsf28vcc4tsr3ibouhc0:57) code example

Example: Uncaught ReferenceError: function is not defined at HTMLUnknownElement.onclick

//Your program can't find the function so do this.

//You can assign the button onclick as an id.
//then attach an eventListener on run time like this:

<button id="btn">Click me!</button>

var btn = document.getElementById("btn");
btn.addEventListener("click", function() {
	//Do something here
}, false);