function change_action() { var id = $('#action option:selected').val(); $('#res').html(''); //$('#res1').attr("disabled","disabled"); $('#res1').hide(); //$('#res1').css("visibility","hidden"); //$('#res2').attr("disabled","disabled"); $('#res2').hide(); //$('#res2').css("visibility","hidden"); //$('#res3').attr("disabled","disabled"); $('#res3').hide(); //$('#res3').css("visibility","hidden"); switch(id) { case '3': //$('#res1').attr("disabled",""); $('#res1').show(); //$('#res1').css("visibility","visible"); break; case '2': //$('#res1').attr("disabled",""); $('#res1').show(); //$('#res1').css("visibility","visible"); break; case '1': //$('#res1').attr("disabled",""); $('#res1').show(); //$('#res1').css("visibility","visible"); //$('#res2').attr("disabled",""); $('#res2').show(); //$('#res2').css("visibility","visible"); //$('#res3').attr("disabled",""); $('#res3').show(); //$('#res3').css("visibility","visible"); break; }; return false; }; function change_res() { var res_id = $('#res option:selected').val(); var action_id = $('#action option:selected').val(); switch(action_id) { case '3': switch(res_id) { case '1': $('#res_submit').click(function(){ window.location = 'http://frant.com.ru/projects/frant/archive/'; }); break; }; break; case '2': switch(res_id) { case '1': $('#res_submit').click(function(){ window.location = 'http://do.frantob.ru/cabinet/tickets/add/'; }); break; }; break; case '1': switch(res_id) { case '1': $('#res_submit').click(function(){ window.location = '/reclame/projects/frant/loc/'; }); break; case '2': $('#res_submit').click(function(){ window.location = '/reclame/projects/extradom/loc/'; }); break; case '3': $('#res_submit').click(function(){ window.location = '/reclame/projects/telesputnik/'; }); break; }; break; }; return false; };