function select_update(v_id) {
			dojo.xhrGet({
				url: "/career/detail/"+v_id+"/",
				handleAs: "json",
				load: function(data, ioargs){
                    if (data.success){
					dojo.byId("vid_short_description").innerHTML = data.short_desc;
					dojo.byId("vid_short_desc").innerHTML = "Description :";
					dojo.byId("vid_long_description").innerHTML = data.long_desc;
					dojo.byId("vid_long_desc").innerHTML = "Qualifications :";
                    var next_url = "/careers/"+v_id;
					dojo.byId("vid_link").innerHTML = "<a href='"+next_url+"'>>>>>>CONTINUE>>>>>></a>";
                    }
                    else{
					dojo.byId("vid_error").innerHTML = data.error;
                    }
				}
			});
}

function select_update_html(v_id) {
			dojo.xhrGet({
				url: "/career/detail_html/"+v_id+"/",
				load: function(data, ioargs){
                    dojo.byId('select_result').innerHTML = data;
				},
                error: function(data){
                    alert("Connection error "+data);
                }
			});
}

