var update_hear_about = function()
{
    $("#hear_about_addon").html("");
        $("#hear_about_notes").html("");
        $.ajax({type:"GET", url:"/lib/ajax/reps_ajax.php", data:"drop_down=1&hear_about_id="+$("#hear_about_select1").val(), success: function(data){
            $("#hear_about_addon").append(data);
        }});
        $.ajax({type:"GET", url:"/lib/ajax/reps_ajax.php", data:"text_field=1&hear_about_id="+$("#hear_about_select1").val(), success: function(data){
            $("#hear_about_addon").append(data);
        }});
        $.ajax({type:"GET", url:"/lib/ajax/reps_ajax.php", data:"other=1&hear_about_id="+$("#hear_about_select1").val(), success: function(data){
            if($("#hear_about_select2")){
                if($("#hear_about_select2").val() != null){
                    $("#hear_about_notes").append("<input type='hidden' name='hear_about' id='hear_about' value='"+$("#hear_about_select2").val()+"' />");
                }else{
                    $("#hear_about_notes").append("<input type='hidden' name='hear_about' id='hear_about' value='"+$("#hear_about_select1").val()+"' />");
                }
                if($("#hear_about_select2").change(function(){
                    $("#hear_about_notes").html("");
                    $("#hear_about_notes").append("<input type='hidden' name='hear_about' id='hear_about' value='"+$("#hear_about_select2").val()+"' />");
                    $("#hear_about_notes").append(data);
                }));
            }else if($("#hear_about_text_field2")){
                $("#hear_about_notes").html("");
                $("#hear_about_notes").append("<input type='hidden' name='hear_about' id='hear_about' value='"+$("#hear_about_text_field2").val()+"' />");
            }else{
            }
            $("#hear_about_notes").append(data);
        }});
};

$(document).ready(function(){
	if($("#hear_about_select1").change(function(){
		update_hear_about();
	}));
});