IE 8 でスクリプトをテストしていましたが、動作せず、エラーも表示されません。私のスクリプト:
$(document).ready(function(){
var type = "hat";
$('select#itemtype').change(function() {
if($("select#itemtype option:selected").text(); == type) {
$('#graphic').show();
} else {
$('#graphic').hide();
}
});
}