Вот xml
<newjobs>
<newjob>
<i>ИМЯ</i>
<name>ФАМИЛИЯ</name>
<caption>ОПИСАНИЕ</caption>
<cap>
<not>значение1</not>
<not>значение2</not>
<not>значение3</not>
<not>значение4</not>
<not>значение5</not>
<not>значение6</not>
</cap>
</newjob>
<newjob>
<i>ИМЯ2</i>
<name>ФАМИЛИЯ2</name>
<caption>ОПИСАНИЕ3</caption>
<cap>
<not>значение11</not>
<not>значение22</not>
<not>значение33</not>
<not>значение44</not>
<not>значение55</not>
<not>значение66</not>
</cap>
</newjob>
</newjobs>
как достучаться до значения "значение11"
var xmlDoc = request.responseXML.documentElement;
var showimg1=xmlDoc.getElementsByTagName("cap")[1].getElementsByTagName("not")[0].nodeValue;
alert(showimg1);
не помогает