$(document).ready(function(){ if ($("select#id_type1").val() == 3 || $("select#id_type1").val() == 1 || $("select#id_type1").val() == 24 || $("select#id_type1").val() == 26 || $("select#id_type1").val() == 54 || $("select#id_type1").val() == 27 || $("select#id_type1").val() == 67) { $("select#id_type2").parent().parent().show(); } $("select#id_type1").change(function(){ if ($("select#id_type1").val() == 3 || $("select#id_type1").val() == 1 || $("select#id_type1").val() == 24 || $("select#id_type1").val() == 26 || $("select#id_type1").val() == 54 || $("select#id_type1").val() == 27 || $("select#id_type1").val() == 67) { $("select#id_type2").parent().parent().show(); if ( $(this).val() ) { $("select#id_type2").html(''); $.getJSON("/" + lang + "/catalog/subtype/",{id: $(this).val(), ajax: 'true'}, function(j){ var options = ''; for (var i = 0; i < j.length; i++) { options += ''; } $("select#id_type2").html(options); }) } else { } } else { var options = ''; $("select#id_type2").html(options); $("select#id_type2").parent().parent().hide(); } }) });