﻿
//index.aspx ready
$(document).ready(function(){

    //handle centre list selection
    $("#CentreList").change(function(){
    
        //get centre properties
        var centre = $('#CentreList option:selected').val();
    
        //redirect to centre page
        window.location = "/centres/" + centre + ".aspx";
        
    });

});