﻿function RedirectToSafetyForPage(thisDropDown)
{
    var securityFor = '';
    for(var i=1; i< thisDropDown.length; i++)
    {
        if(thisDropDown.options[i].selected == true)
        {
            securityFor = thisDropDown.options[i].text;
            break;
        }
    }
    
    switch(securityFor)
    {
        case "Apartment": 
            window.location.href = '/security-for-your-apartment.aspx'
            break;
        case "Condo":
            window.location.href = '/security-for-your-condo.aspx'
            break;
        case "House":
            window.location.href = '/security-for-your-house.aspx'
            break;
    }
}

