function getAmout( ){
     property = document.getElementById('property').value;
     row = property.substr(product.length,property.length-product.length-1);
   for (item in arr_java)
    {
    if (row == arr_java[item]['name'] )
      {
        if ( arr_java[item]['property_sales_price'] != '' && arr_java[item]['property_sales_price'] != '0.00' )
        {
         price = '<h1><b><strike>$ ' + arr_java[item]['price'] + ' CAD</strike><br><font color="red">$ ' + arr_java[item]['property_sales_price'] + ' CAD</font></b></h1>';
         document._xclick.amount.value = arr_java[item]['property_sales_price'];
         document._xclick.amount.value = arr_java[item]['property_sales_price'];
        }else
        {
          price = '<h1><b>$ ' + arr_java[item]['price'] + ' CAD</b></h1>';
          document._xclick.amount.value = price;
          document._xclick.amount.value = arr_java[item]['price'];
        }
        document._xclick.item_number.value = arr_java[item]['property_sku'];
        document.getElementById('Prices').innerHTML = price;
      }
    }
}