function SubmitOnChange(form_id)
{
    if(form_id != null)
    {
        //get the form
        var theForm = document.getElementById(form_id);
        
        //submit it
        theForm.submit();
    }
}
