jQuery( function($) {
jQuery("#WP-CC_submit").click(function(){
	jQuery(".WP-CC_result").html("<img src='wp-content/plugins/wp-currencyconvertor/ajax-loader.gif' />");
    jQuery("#WP-CC_submit").attr("disabled", "true");
	jQuery.ajax({
	   type: "post",
	   url: "wp-content/plugins/wp-currencyconvertor/ajax.currencyconvertor.php",
	   data: "FromCurrency="+jQuery("#FromCurrency").val()+"&ToCurrency="+jQuery("#ToCurrency").val()+"&amount="+jQuery("#amount").val(),
	   success: function(html){
   			jQuery(".WP-CC_result").html(html);
            jQuery("#WP-CC_submit").attr("disabled", "");
	   }
	 });

});
});