Hallo,
hier ein neuer Versuch, der leider auch nicht klappt.
function auswahl(){
var type = document.checkAllForm.alter.options[document.checkAllForm.type.selectedIndex].value;
if(var type = "user")
document.getElementById('a_form').style.display='none';
document.getElementById('u_form').style.display='';
} elseif (var type = "artists") {
document.getElementById('a_form').style.display='none';
document.getElementById('u_form').style.display='';
}
}
<form>
<select name='type' onchange='auswahl()'>
<option value='user' selected='selected' name='user'style='cursor:pointer'>User</option>
<option value='artists' name='artists'style='cursor:pointer'>Artist</option>
</select>
</form>
Hoffe ihr könnt mir helfen.
LG
Phil z.