$(document).ready(function () {

    $("#idServicio").change(function () {

        location.href = "http://" + location.href.split("/")[2] + "?idServicio=" + $("#idServicio").val();

    });

    $("#BtnEncontrar").click(function () {

        if ($("#idMarca").val() > 0)
        {
            switch ($("#idServicio").val())
            {
                case "1":  {

                    location.href = "http://" + location.href.split("/")[2] + "/Vehiculos_Nuevos/Concesionarios/" + $("#idMarca option:selected").text().replace(" ", "");

                    break;
                }

                case "2":  {

                    location.href = "http://" + location.href.split("/")[2] + "/Taller/" + $("#idMarca option:selected").text().replace(" ", "");

                    break;
                }

                case "3": {

                    location.href = "http://" + location.href.split("/")[2] + "/Recambios/RecambiosParticular/?idMarca=" + $("#idMarca").val();
                
                    break;
                }
            }
        }

    });

});
