Windows.location

Windows.location

I'm having trouble getting the condition to work correctly and load the correct page. No pages are loading and no error is given
  1. <script>
  2. $(document).ready(function() {
  3.     $("#app_type").submit(function() {
  4.         var selrange = $("select#range").val();
  5.         var selplace = $("select#place").val();
  6.         var selindustry = $("select#industry").val();

  7.               if (selrange == '1') {
  8.             if (selplace == "1") {
  9.             window.location = "application_us_short.php";
  10.             } else {
  11.             window.location = "application_ca_short.php";
  12.             }
  13.         }
  14.         if ((selrange == '2') && (selindustry == '2' || selindustry == '10')) {
  15.             if (selplace == "1") {
  16.             window.location = "application_us_short.php";
  17.             } else {
  18.             window.location = "application_ca_short.php";
  19.         } 
  20.         if ((selrange == '2') && (selindustry != '2' || selindustry != '10') || (selrange = '3'))  {
  21.             if (selplace == "1") {
  22.             window.location = "application.php"; 
  23.             } else {
  24.             window.location = "application_ca.php";
  25.             }
  26.         }       
  27.     });
  28. });
  29. </script>

  30.         <div style="margin: 0 auto; text-align: center; margin-top: 60px">
  31.             <form id="app_type">
  32.             <h4>What country are you located in?</h4>
  33.             <select id="place" name="place">
  34.                 <option value="1">United States</option>
  35.                 <option value="2">Canada</option>
  36.             </select>
  37.             &nbsp;
  38.             <h4>What industry is your company most closely associated with?</h4>
  39.             <select id="industry" name="industry">
  40.                 <option value="1">Agriculture</option>
  41.                 <option value="2">Consumer Electronics &amp; Appliances</option>
  42.                 <option value="3">Construction/Industrial</option>
  43.                 <option value="4">Manufactured Housing</option>
  44.                 <option value="5">Marine</option>
  45.                 <option value="6">Music</option>
  46.                 <option value="7">Outdoor Power Equipment</option>
  47.                 <option value="8">Power Sports</option>
  48.                 <option value="9">Recreational Vehicles</option>
  49.                 <option value="10">Technology</option>
  50.                 <option value="11">Trailer</option>
  51.             </select>
  52.             &nbsp;
  53.             <h4>What credit line range are you applying for?</h4>
  54.             <select id="range" name="range">
  55.                 <option value="1">Less than $150,000</option>
  56.                 <option value="2">$150,001-$350,000</option>
  57.                 <option value="3">$350,000+</option>
  58.             </select>
  59.             <hr>
  60.                 <input type="submit" value="Submit" id="process_app" />
  61.             </form>
  62.         </div>