The input and output are pretty much identical, however here is an example:
original xml:
<rentalProperties>
<property available="yes" contact="0423020892">
<type>house</type>
<price>800</price>
<address>
<streetNo>116</streetNo>
<street>Warrigal Road</street>
<suburb>Camberwell</suburb>
<state>VIC</state>
<zipcode>3124</zipcode>
</address>
<numberOfBedrooms>4</numberOfBedrooms>
<description>Ideal for the familly is this charming Californian Bungalow.</description>
</property>
</rentalProperties>
A sample out the output would be:
<RentalProperties>
<property>
<type>house</type>
<price>800</price>
<address>116,Warrigal Road,Camberwell,VIC,3124, Australia</address>
<numberOfBedrooms>4</numberOfBedrooms>
<description>
Ideal for the familly is this charming Californian Bungalow.
</description>
</property>
</RentalProperties>
However using the xsl sheet i posted previously, i want the output to have eliminated those properties WITHOUT a type equaling 'apartment' or 'unit' - such as the property above. Hope this makes sense!