Dynamic XML question

Hi, I have an XML file:

<events>
<event_1>
<date>12/1/09</date>
<event>Team Meeting</event>
</event_1>
<event_2>
<date>12/1/09</date>
<event>Paper Airplane Contest</event>
</event_2>
<event_3>
<date>12/22/09</date>
<event>NO Team Meeting</event>
</event_3>
<event_4>
<date>1/9/10</date>
<event>Kettering Kickoff!</event>
</event_4>
</events>

I’ve already loaded everything in and accessed it.
i’m working on a way to have an administrator access panel that lets you change the date and event through actionscript, but i’m confused as to whether or not you can physically change the data in an xml file through xml. i want to be able to permanently change nodes W/actionscript.
Thank you for your time ANY recommendations are welcome I NEED answers and quick
~Dblade3276