$(document).ready( function()
{
    $( "#search #target" ).submit( search );
});

function search( event )
{
    var keyword = $("input:first").val();
    if ( keyword == "Keyword Search" )
    {
      window.location = "http://musicboxmx.com/live/";
      return false;
    }
    else
    {
        window.location.href = "http://musicboxmx.com/live/?keyword=" + keyword;
        return false;
    }
}