$(document).ready(function(){
    $('select#frm-event').change(function(){
        var path = ($('select#frm-event').val())
        window.location = path 
    })
    $('select#frm-artist').change(function(){
        var path = ($('select#frm-artist').val())
        window.location = path 
    })
})